css: Fix GtkCssChange enum
authorBenjamin Otte <otte@redhat.com>
Fri, 17 Jul 2015 20:06:16 +0000 (22:06 +0200)
committerBenjamin Otte <otte@redhat.com>
Fri, 17 Jul 2015 20:06:16 +0000 (22:06 +0200)
commit6c862f229fa54b6377856409b4b12ed362f8bf87
tree3368613b78e88e40435511bc8df93dcbebf4bf51
parentdbb183072804b3a498d84cb6c98f5f93a6f6c8c5
css: Fix GtkCssChange enum

Previously, the (1<<31) value evaluated to the 64bit value
  0xFFFFFFFF80000000
instead of
  0x0000000080000000
Avoid this by explicitly casting the value to unsigned long long.

Also cast all values to unsigned long long to achieve consistency
and hopefully in the future get new values added the same way.
gtk/gtkcsstypesprivate.h